home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / STDERRF.ZIP / PROCESOR.INC < prev    next >
Text File  |  1995-05-29  |  2KB  |  63 lines

  1. .nolist
  2. ifndef    PROCESOR_INC
  3.  
  4. comment #
  5.     PROCESOR.INC                        V1.00
  6. ==========================================================================
  7. NAME
  8.     PROCESOR.INC        Processor designation include file
  9.  
  10. DESCRIPTION
  11.     This include file is used to specify the processor for which the
  12.     .asm files will be assembled.  Placing the processor directive in
  13.     this include file allows the changing of the processor without
  14.     changing the source code.
  15.  
  16.     Selection of a processor enables assembly of all earlier processor
  17.     instructions.
  18.  
  19.     Selection of the processor enables assembly of the coprocessor
  20.     instructions.
  21.  
  22.     Acceptable values are:
  23.     .8086    -> enables assembly of 8086 and 8087 instructions only
  24.     .8087    -> enables assembly of 8087 instructions
  25.     .186    -> enables assembly of 80186 instructions
  26.     .286    -> enables assembly of real mode 80286 instructions
  27.     .287    -> enables assembly of 80287 instructions
  28.     .286P    -> enables assembly of both real and protected mode 80286
  29.            instructions
  30.     .386    -> enables assembly of real mode 80386 instructions
  31.     .387    -> enables assembly of 80387 instructions
  32.     .386P    -> enables assembly of both real and protected mode 80386
  33.            instructions
  34.     .486    -> enables assembly of real mode 80486 instructions
  35.     .486P    -> enables assembly of both real and protected mode 80486
  36.            instructions
  37.  
  38. AUTHOR
  39.     Raymond Moon
  40.     Copyright 1992 - Raymond Moon
  41.     ALL RIGHTS RESERVED
  42.  
  43. HISTORY
  44.     Version - Date        - Remarks
  45.     1.00    19 Jan 92    - Orginal
  46.     1.01    15 Aug 92    - Completed Description of all MASM 6.0 Options
  47.                 - Added PROCESOR_INC equate and test
  48.     #
  49.  
  50. ;----------------------------
  51. ;    Define equate to identify this include file to preclude being
  52. ;    included more than once.
  53.  
  54. PROCESOR_INC    equ    1
  55.  
  56. ;----------------------------
  57. ;    Specify target processor.
  58.  
  59.     .286
  60.  
  61. endif
  62. .list
  63.